home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 April / Software of the Month Club 1996 April.iso / pc / os2 / psutils / cmd / fixpsd~1.cmd < prev    next >
OS/2 REXX Batch file  |  1996-02-21  |  687b  |  28 lines

  1. extproc perl5 -x
  2. #! perl5
  3.  
  4. # fixpsditps: fix psdit output for use in psutils
  5. #
  6. # Copyright (C) Angus J. C. Duggan 1991-1995
  7. # See file LICENSE for details.
  8.  
  9. $nesting = 0;
  10.  
  11. while (<>) {
  12.    if (/^\/p{pop showpage pagesave restore \/pagesave save def}def$/) {
  13.       print "/p{pop showpage pagesave restore}def\n";
  14.    } elsif (/^%%BeginDocument/ || /^%%BeginBinary/ || /^%%BeginFile/ ) {
  15.       print $_;
  16.       $nesting++;
  17.    } elsif (/^%%EndDocument/ || /^%%EndBinary/ || /^%%EndFile/) {
  18.       print $_;
  19.       $nesting--;
  20.    } elsif (/^%%Page:/ && $nesting == 0) {
  21.       print $_;
  22.       print "xi\n";
  23.    } elsif (! /^xi$/) {
  24.       print $_;
  25.    }
  26. }
  27. # End of Script
  28.